-
Notifications
You must be signed in to change notification settings - Fork 172
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: [POC] for Vertical Tagging Feature #4523
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks fine to me 👏
""" | ||
Model used to assign verticals to program. | ||
""" | ||
program = models.ForeignKey(Program, on_delete=models.CASCADE, related_name='program_verticals') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is it that we have a OneToOneField with Course but ForeignKey in Programs?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It should be one-to-one thanks for pointing out
PROD-4255
This PR adds a POC for the Vertical Tagging by creating a separate app in course-discovery
Registered models to support this feature
Vertical and Subvertical admin entry list page
Upload CSV button rendering on admin
Upload CSV button to support bulk uploading and backpopulation